home *** CD-ROM | disk | FTP | other *** search
- %!PS-Adobe-2.0
- %
- % BGI Printer Driver Toolkit Postscript Header
- %
- % Copyright (c) 1990,1993 Ryle Design, PO Box 22, Mt. Pleasant MI 48804
- %
- % V1.1B 01.93 thl
- %
- % Internal variables:
- %
- /linewidth 2 def
- %
- % Procedures called by PSBGI driver:
- %
- /INIT % BGI init
- {
- 18 36 translate % margins
- 0.1 0.1 scale % scale to decipoints
- 1.415 setmiterlimit % bevels < 90 deg
- }
- bind def
- %
- /POST % BGI post
- {
- showpage % show what we drew ...
- }
- bind def
- %
- /VECT % BGI line & vect (x1,y1) to (x2,y2)
- {
- newpath moveto lineto stroke
- }
- bind def
- %
- /LNWD % set line width
- {
- linewidth mul setlinewidth
- }
- bind def
- %
- /LNST % set line style
- {
- 0 setdash
- }
- bind def
- %
- %
- /PIXL % BGI set pixel function
- {
- newpath moveto
- -1 -1 rmoveto
- 0 2 rlineto
- 1 0 rlineto
- 0 -2 rlineto
- 1 0 rlineto
- 0 2 rlineto stroke
- }
- bind def
- %
- % End of PSBGI header
- %